Es importante tener en cuenta que si el token tiene permisos el listado, sino retorna error.
{success} GET: /api/webhooks/integrators
use GuzzleHttp\Client;
$client = new Client();
$res = $client->request("GET", "{$endpoint}/api/webhooks/integrators");
$integrators = json_decode($res->getBody(), true);
return $integrators;
[
{
"id": 1,
"name": "Palomma"
}
]